diff options
Diffstat (limited to 'app/[lng]/evcp/(evcp)/projects/page.tsx')
| -rw-r--r-- | app/[lng]/evcp/(evcp)/projects/page.tsx | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/app/[lng]/evcp/(evcp)/projects/page.tsx b/app/[lng]/evcp/(evcp)/projects/page.tsx index 0320f259..09cf6541 100644 --- a/app/[lng]/evcp/(evcp)/projects/page.tsx +++ b/app/[lng]/evcp/(evcp)/projects/page.tsx @@ -9,7 +9,7 @@ import { ItemsTable } from "@/lib/items/table/items-table" import { getProjectLists } from "@/lib/projects/service" import { ProjectsTable } from "@/lib/projects/table/projects-table" import { searchParamsProjectsCache } from "@/lib/projects/validation" - +import { InformationButton } from "@/components/information/information-button" interface IndexPageProps { searchParams: Promise<SearchParams> @@ -34,9 +34,12 @@ export default async function IndexPage(props: IndexPageProps) { <div className="flex items-center justify-between space-y-2"> <div className="flex items-center justify-between space-y-2"> <div> - <h2 className="text-2xl font-bold tracking-tight"> - Project List from S-EDP - </h2> + <div className="flex items-center gap-2"> + <h2 className="text-2xl font-bold tracking-tight"> + Project List from S-EDP + </h2> + <InformationButton pageCode="evcp/projects" /> + </div> <p className="text-muted-foreground"> S-EDP로부터 수신하는 프로젝트 리스트입니다. 향후 MDG로 전환됩니다.{" "} {/* <span className="inline-flex items-center whitespace-nowrap"> |
